home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / VENKMAN.XPI / bin / chrome / venkman.jar / content / venkman / venkman-url-loader.js < prev    next >
Encoding:
Text File  |  2004-04-18  |  3.9 KB  |  114 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is The JavaScript Debugger.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Robert Ginda, <rginda@netscape.com>, original author
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. const IOSERVICE_CTRID = "@mozilla.org/network/io-service;1";
  41. const nsIIOService    = Components.interfaces.nsIIOService;
  42. const SIS_CTRID       = "@mozilla.org/scriptableinputstream;1"
  43. const nsIScriptableInputStream = Components.interfaces.nsIScriptableInputStream;
  44. const nsIChannel      = Components.interfaces.nsIChannel;
  45. const nsIInputStream  = Components.interfaces.nsIInputStream;
  46. const nsIRequest      = Components.interfaces.nsIRequest;
  47.  
  48. function _getChannelForURL (url)
  49. {
  50.     var serv = Components.classes[IOSERVICE_CTRID].getService(nsIIOService);
  51.     if (!serv)
  52.         throw new BadMojo(ERR_FAILURE);
  53.     
  54.     return serv.newChannel(url, null, null);
  55.  
  56. }
  57.  
  58. function loadURLNow (url)
  59. {
  60.     var chan = _getChannelForURL (url);
  61.     chan.loadFlags |= nsIRequest.LOAD_BYPASS_CACHE;
  62.     var instream = 
  63.         Components.classes[SIS_CTRID].createInstance(nsIScriptableInputStream);
  64.     instream.init (chan.open());
  65.  
  66.     var result = "";
  67.     var avail;
  68.  
  69.     while ((avail = instream.available()) > 0)
  70.         result += instream.read(avail);
  71.  
  72.     return result;
  73. }
  74.  
  75. function loadURLAsync (url, observer)
  76. {
  77.     var chan = _getChannelForURL (url);
  78.     chan.loadFlags |= nsIRequest.LOAD_BYPASS_CACHE;
  79.     return chan.asyncOpen (new StreamListener (url, observer), null);
  80. }
  81.     
  82. function StreamListener(url, observer)
  83. {
  84.     this.data = "";
  85.     this.url = url;
  86.     this.observer = observer;
  87. }
  88.  
  89. StreamListener.prototype.onStartRequest =
  90. function (request, context)
  91. {
  92.     //dd ("onStartRequest()");
  93. }
  94.  
  95. StreamListener.prototype.onStopRequest =
  96. function (request, context, status)
  97. {
  98.     //dd ("onStopRequest(): status: " + status /* + "\n"  + this.data*/);
  99.     if (typeof this.observer.onComplete == "function")
  100.         this.observer.onComplete (this.data, this.url, status);
  101. }
  102.  
  103. StreamListener.prototype.onDataAvailable =
  104. function (request, context, inStr, sourceOffset, count)
  105. {
  106.     //dd ("onDataAvailable(): " + count);
  107.     // sometimes the inStr changes between onDataAvailable calls, so we
  108.     // can't cache it.
  109.     var sis = 
  110.         Components.classes[SIS_CTRID].createInstance(nsIScriptableInputStream);
  111.     sis.init(inStr);
  112.     this.data += sis.read(count);
  113. }
  114.